home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / awe2-0_1.lha / awe2-0.1 / Src / RCS / PrioritySemaphore.h,v < prev    next >
Text File  |  1988-10-12  |  533b  |  42 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    grunwald:1.1; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.09.18.16.42.13;  author grunwald;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @#ifndef PRIORITY_SEMAPHOREH
  25. #define PRIORITY_SEMAPHOREH
  26.  
  27. #include "HeapScheduler.h"
  28. #include "Semaphore.h"
  29.  
  30. class PrioritySemaphore : public Semaphore
  31. {
  32.     HeapScheduler heap;
  33.     
  34. public :
  35.  
  36.     PrioritySemaphore(int count = 1, bool debug = FALSE);
  37.     virtual ~PrioritySemaphore();
  38. };
  39.  
  40. #endif PRIORITY_SEMAPHOREH
  41. @
  42.